home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / prgtools / prtsut53.zip / SU1SRC.ZIP / DEMO07.PAS < prev    next >
Pascal/Delphi Source File  |  1997-02-02  |  2KB  |  78 lines

  1. unit Demo07;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, DBCtrls, DB, DBTables, ExtCtrls, Mask, StdCtrls, CBBand,
  8.   Cb_Types, CBReport;
  9.  
  10. type
  11.   TFBDemo07 = class(TForm)
  12.     CBReport1: TCBReport;
  13.     CBBand1: TCBBand;
  14.     Label1: TLabel;
  15.     Label2: TLabel;
  16.     Edit1: TEdit;
  17.     Memo1: TMemo;
  18.     CheckBox1: TCheckBox;
  19.     RadioButton1: TRadioButton;
  20.     RadioButton2: TRadioButton;
  21.     CheckBox2: TCheckBox;
  22.     Panel1: TPanel;
  23.     GroupBox1: TGroupBox;
  24.     Panel2: TPanel;
  25.     RadioGroup1: TRadioGroup;
  26.     CheckBox3: TCheckBox;
  27.     CheckBox4: TCheckBox;
  28.     CheckBox5: TCheckBox;
  29.     RadioButton3: TRadioButton;
  30.     RadioButton4: TRadioButton;
  31.     RadioButton5: TRadioButton;
  32.     Memo2: TMemo;
  33.     ComboBox1: TComboBox;
  34.     Panel3: TPanel;
  35.     Label3: TLabel;
  36.     ComboBox2: TComboBox;
  37.     MaskEdit1: TMaskEdit;
  38.     Shape1: TShape;
  39.     Shape2: TShape;
  40.     Shape3: TShape;
  41.     Shape4: TShape;
  42.     Shape5: TShape;
  43.     Shape6: TShape;
  44.     Image1: TImage;
  45.     ScrollBox1: TScrollBox;
  46.     Image2: TImage;
  47.     Shape7: TShape;
  48.     Shape8: TShape;
  49.     Bevel1: TBevel;
  50.     Label4: TLabel;
  51.     Panel4: TPanel;
  52.     Label5: TLabel;
  53.     DataSource1: TDataSource;
  54.     Table1: TTable;
  55.     EditCommon_Name: TDBEdit;
  56.     DBText1: TDBText;
  57.     DBMemo1: TDBMemo;
  58.     DBImage1: TDBImage;
  59.     DBRadioGroup1: TDBRadioGroup;
  60.     DBComboBox1: TDBComboBox;
  61.     DBCheckBox1: TDBCheckBox;
  62.     DBCheckBox2: TDBCheckBox;
  63.     Label6: TLabel;
  64.   private
  65.     { Private declarations }
  66.   public
  67.     { Public declarations }
  68.   end;
  69.  
  70. var
  71.   FBDemo07: TFBDemo07;
  72.  
  73. implementation
  74.  
  75. {$R *.DFM}
  76.  
  77. end.
  78.